From: Mark A. Hershberger Date: Tue, 20 Jul 2010 15:47:01 +0000 (+0000) Subject: admin parameter is required now since we no longer default to WikiSysop X-Git-Tag: 1.31.0-rc.0~36043 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=c93f63a6baa83dd2d3e380f448b069e279ce74ce;p=lhc%2Fweb%2Fwiklou.git admin parameter is required now since we no longer default to WikiSysop --- diff --git a/maintenance/install.php b/maintenance/install.php index 70bc30c9f6..17f121dcb5 100644 --- a/maintenance/install.php +++ b/maintenance/install.php @@ -30,8 +30,8 @@ class CommandLineInstaller extends Maintenance { $this->addArg( 'name', 'The name of the wiki', true); - $this->addArg( 'admin', 'The username of the wiki administrator (WikiSysop)', false); - $this->addOption( 'pass', 'The password for the wiki administrator. You will be prompted for this if it isn\'t provided', false, true); + $this->addArg( 'admin', 'The username of the wiki administrator (WikiSysop)', true); + $this->addOption( 'pass', 'The password for the wiki administrator. You will be prompted for this if it isn\'t provided', false, true); $this->addOption( 'email', 'The email for the wiki administrator', false, true); $this->addOption( 'lang', 'The language to use (en)', false, true );